home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / MCASM.RAR / MC_ASM.EXE / WROX_ASM / CH12 / COMMON / CONFIGS.H < prev    next >
C/C++ Source or Header  |  1994-09-24  |  232b  |  11 lines

  1. #include <stdio.h>
  2.  
  3. // procedure for parsing config files
  4. // gets next string from text file
  5. // skip strings beginning from ';'
  6. // kill trailed blanks  and comments (text starting from ';' )
  7.  
  8. char *next_string(FILE *f);
  9.  
  10.  
  11.